home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 861 b | 27 lines |
- /*==================================================================
- * File : Imakefile
- * Package: Xprof
- *
- * Author : Aloke Gupta.
- *
- * (C) Copyright 1992, Aloke Gupta.
- *==================================================================*/
-
- PROGRAMS = xprof
- HEADERS = common.h profile.h
- SRCS = main.c error.c event.c message.c parse.c request.c reply.c \
- table.c update.c gc.c
- OBJS = main.o error.o event.o message.o parse.o request.o reply.o \
- table.o update.o gc.o
- SYS_LIBRARIES = -lX11 -lm
- VERSION = 1.01
-
- ComplexProgramTarget(xprof)
-
- tar:
- -rm -f xprof xprof_$(VERSION).tar.Z
- cp Makefile Makefile.bak
- tar chf xprof_$(VERSION).tar Imakefile Makefile $(HEADERS) $(SRCS) xprof.1;
- mv Makefile.bak Makefile
- compress xprof_$(VERSION).tar
-